home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 May / Macworld (1998-05).dmg / Games World / Shareware Games / Arcade / Supreme Commander / Supreme Commander.mac / 00123.ls < prev    next >
Encoding:
Text File  |  1996-01-30  |  371 b   |  20 lines

  1. on mouseDown
  2.   global occupied, topupied
  3.   if the mouseH > 460 then
  4.     exit
  5.   else
  6.     if the visible of sprite 48 = 1 then
  7.       exit
  8.     else
  9.       set occupied to 0
  10.       set topupied to 0
  11.       repeat with x = 1 to 6
  12.         puppetSprite(x, 0)
  13.         set the visible of sprite x to 1
  14.       end repeat
  15.       puppetSound(0)
  16.       go("exuent")
  17.     end if
  18.   end if
  19. end
  20.